BigPictureStyle
Helper class for generating large-format notifications that include a large image attachment. If the platform does not provide large-format notifications, this method has no effect. The user will always see the normal notification view. This class is a "rebuilder": It attaches to a Builder object and modifies its behavior, like so:
Notification notification = new NotificationCompat.Builder(mContext)
.setContentTitle("New photo from " + sender.toString())
.setContentText(subject)
.setSmallIcon(R.drawable.new_post)
.setLargeIcon(aBitmap)
.setStyle(new Notification.BigPictureStyle()
.bigPicture(aBigBitmap))
.build();
Content copied to clipboard
See also
Functions
Link copied to clipboard
Link copied to clipboard
@NonNull
@NonNull
Override the large icon when the big notification is shown.
Link copied to clipboard
@NonNull
Provide the bitmap to be used as the payload for the BigPicture notification.
@NonNull
Provide an icon to be used as the payload for the BigPicture notification.
Link copied to clipboard
Link copied to clipboard
@NonNull
Overrides ContentTitle in the big form of the template.
Link copied to clipboard
@NonNull
Set the content description of the big picture.
Link copied to clipboard
@NonNull
Set the first line of text after the detail section in the big form of the template.
Link copied to clipboard
@NonNull
When set, the big picture of this style will be promoted and shown in place of the large icon in the collapsed state of this notification.